home *** CD-ROM | disk | FTP | other *** search
/ OpenGL Superbible (2nd Edition) / OpenGL SuperBible e2.iso / tools / GLUT-3.7 / PROGS / DEMOS / BOUNCE / GLUI.H < prev    next >
Encoding:
Text File  |  1998-08-12  |  350 b   |  19 lines

  1. /*
  2.   glui.h
  3.   Nate Robins, 1997.
  4.  
  5.   OpenGL based user interface.
  6.  
  7.  */
  8.  
  9. int
  10. gluiHorizontalSlider(int parent, int x, int y, int width, int height,
  11.              float percent, void (*update)(float));
  12.  
  13. int
  14. gluiVerticalSlider(int parent, int x, int y, int width, int height,
  15.            float percent, void (*update)(float));
  16.  
  17. void
  18. gluiReshape(int width, int height);
  19.